home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 February / Software of the Month Club 1996 February.iso / pc / dos / dtp / show30 / show30.exe / EXAMPLEM.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-01-15  |  6.9 KB  |  213 lines

  1. @echo off
  2. SHOW-PCX BLUE.PCX weave
  3.  
  4. gtext "    Show Maker will allow you " 1 1 14 90
  5. gtext "    to create new interactive" 2 1 14 90
  6. gtext "    presentations and tutorials." 3 1 14 90
  7. gtext "    Imagine turning dull meetings" 4 1 14 90
  8. gtext "    and boring classrooms into " 5 1 14 90
  9. gtext "    show-stopping presentations" 6 1 14 90
  10. gtext "    and tutorials complete with" 7 1 14 90
  11. gtext "    speech, music, special effects" 8 1 14 90
  12. gtext "    and high quality graphic images." 9 1 14 90
  13.  
  14. gtext "    The program that you are running" 19 1 8 100
  15. gtext "    (Show Maker) is created with the" 20 1 8 100
  16. gtext "    tools provided in this package. " 21 1 8 100
  17. PLAY BEGOOD.CMF
  18. gtext "      Press ANY KEY to Continue" 13 1 14
  19. key
  20. clear blue.pcx random
  21.  
  22. SHOW-PCX BLUE.PCX weave
  23.  
  24. gtext "    The following screens are " 1 1 14 90
  25. gtext "    examples of how you can create"2 1 14 90
  26. gtext "    interactive talking presentations" 3 1 14 90
  27. gtext "    and tutorials.  These example" 4 1 14 90
  28. gtext "    files are on this disk and can" 5 1 14 90
  29. gtext "    be modified with the word" 6 1 14 90
  30. gtext "    processor." 7 1 14 90
  31.  
  32. gtext "    The pictures of the following" 9 1 14 100
  33. gtext "    screen could be pictures of" 10 1 14 100
  34. gtext "    your product or service. " 11 1 14 100
  35.  
  36. gtext "      Press ANY KEY to Continue" 13 1 14
  37. key
  38. clear blue.pcx random
  39.  
  40. show-pcx MERCURY.pcx blind r
  41. gtext " M E R C U R Y " 1 22 16 40 100
  42. gtext  "  1st Planet   " 3 22 16 40 100
  43.  
  44. gtext " Mercury, which is the     " 18 13 8 90 100  
  45. gtext " second smallest planet,   " 19 13 8 90 100  
  46. gtext " is not much bigger then   " 20 13 8 90 100  
  47. gtext " the Moon. It also looks   " 21 13 8 90 100  
  48. gtext " much like the Moon, being " 22 13 8 90 100  
  49. gtext " covered with large and    " 23 13 8 90 100  
  50. gtext " small craters.            " 24 13 8 90 100  
  51.  
  52. delay 12
  53. clear MERCURY.pcx blind
  54.  
  55. show-pcx VENUS.pcx DRIP
  56. gtext " V E N U S  " 1 24 16 40 80
  57. gtext " 2nd Planet " 3 24 16 40 80
  58.  
  59. gtext " Venus is almost the " 17 19 8 40 80
  60. gtext " same size as Earth  " 18 19 8 40 80 
  61. gtext " and takes 225 days  " 19 19 8 40 80 
  62. gtext " to revolve around   " 20 19 8 40 80 
  63. gtext " the Sun.            " 21 19 8 40 80
  64. delay 10
  65. clear VENUS.pcx weave
  66.  
  67. show-pcx EARTH.pcx explode r
  68. gtext " E A R T H " 1 25 16 70 90
  69. gtext " Our home  " 2 25 16 70 90
  70. gtext " 3rd Planet" 4 25 16 40 90
  71.  
  72. gtext " Earth is the only    " 17 18 8 70 90
  73. gtext " planet known to be   " 18 18 8 70 90
  74. gtext " capable of support-  " 19 18 8 70 90
  75. gtext " ing higher forms of  " 20 18 8 70 90 
  76. gtext " life, although other " 21 18 8 70 90 
  77. gtext " planets also have    " 22 18 8 70 90 
  78. gtext " atmosphere and water." 23 18 8 70 90  
  79. delay 15
  80. clear EARTH.pcx spiral
  81.  
  82. : QUESTION EXAMPLE
  83.  
  84. show-pcx mercury.pcx blind xy 0 50 
  85. gtext "Which planet looks much like" 1 5 16 120
  86. gtext "the Earth's Moon ?" 2 5 16 120
  87. gtext " 1 - Mercury" 5 21 14 90
  88. gtext " 2 - Venus" 6 21 14 90
  89. gtext " 3 - Jupiter" 7 21 14 90
  90. gtext " 4 - Saturn" 8 21 14 90
  91. gtext "Please enter 1-4 ?" 9 21 16 120
  92.  
  93. KEY 1234
  94. IF ERRORLEVEL 4 GOTO NO
  95. IF ERRORLEVEL 3 GOTO NO
  96. IF ERRORLEVEL 2 GOTO NO
  97. IF ERRORLEVEL 1 GOTO YES
  98.  
  99. :YES
  100. gtext " 1 - Mercury" 5 21 14 30  
  101. gtext "EXCELLENT" 11 21 16 90  
  102. PLAY SUPER.VOC
  103. clear mercury.pcx RANDOM
  104. GOTO NEXT1
  105.  
  106. :NO
  107. gtext "ALMOST" 10 21 16 90
  108. delay 2
  109. clear mercury.pcx CRUSH r
  110.  
  111. :NEXT1
  112. show-pcx Venus.pcx SAND xy 0 50
  113. gtext "Which planet is almost the" 1 5 16 110
  114. gtext "same size as the Earth ?" 2 5 16 110
  115. gtext "1 - Mercury" 5 21 14 40
  116. gtext "2 - Venus" 6 21 14 40
  117. gtext "3 - Jupiter" 7 21 14 40
  118. gtext "4 - Saturn" 8 21 14 40
  119. gtext "Please enter 1-4 ?" 9 21 16 110
  120.  
  121. KEY 1234
  122. IF ERRORLEVEL 4 GOTO NO1
  123. IF ERRORLEVEL 3 GOTO NO1
  124. IF ERRORLEVEL 2 GOTO YES1
  125. IF ERRORLEVEL 1 GOTO NO1
  126.  
  127. :YES1
  128. gtext "2 - Venus" 6 21 14 30
  129. gtext "EXCELLENT" 11 21 16 110
  130. PLAY SUPER.VOC
  131. clear Venus.pcx RANDOM
  132. GOTO NEXT2
  133.  
  134. :NO1
  135. gtext "ALMOST" 10 21 16 110
  136. delay 2
  137. clear Venus.pcx CRUSH r
  138.  
  139. :NEXT2
  140. SHOW-PCX blue.PCX crush slow
  141.  
  142. gtext "         BUSINESS APPLICATIONS  " 1 1 14 90
  143. gtext "         ~~~~~~~~~~~~~~~~~~~~~  " 2 1 14 90
  144.  
  145. gtext "    THESE SCREENS COULD BE YOUR " 5 1 8 95
  146. gtext "    PRODUCTS, SERVICE AND AD'S. " 6 1 8 95
  147. gtext "    Listed below are some of the" 7 1 8 95
  148. gtext "    applications you can create with" 8 1 8 95
  149. gtext "    this new and exciting package." 9 1 8 95
  150.  
  151. gtext "      * SALES PRESENTATIONS" 11 1 8 90
  152. gtext "      * NEW PRODUCT INTRODUCTIONS " 12 1 8 91
  153. gtext "      * SELLING YOUR SERVICES" 13 1 8 92
  154. gtext "      * COURSEWARE AUTHORING " 14 1 8 93
  155. gtext "      * DISK BASED ADVERTISING " 15 1 8 94
  156. gtext "      * CUSTOMER CATCHER " 16 1 8 95
  157. gtext "      * TUTORIALS (C.B.T.) " 17 1 8 96
  158. gtext "      * MAILING TO YOUR CUSTOMERS" 18 1 8 97
  159. gtext "      * HAND OUTS AT TRADE SHOWS" 19 1 8 98
  160. gtext "      * MAKE A COMMERCIAL ON A DISK " 20 1 8 99
  161. gtext "      * BUSINESS REPORT DEMO" 21 1 8 100
  162. gtext "      * INFORMATION STATIONS" 22 1 8 101
  163.  
  164. gtext "      Press ANY KEY to Continue " 24 1 8 210
  165. key
  166.  
  167. SHOW-PCX blue.PCX split slow
  168.  
  169. gtext "       EDUCATIONAL APPLICATIONS  " 0 1 14 90
  170. gtext "       ~~~~~~~~~~~~~~~~~~~~~~~~  " 1 1 14 90
  171.  
  172. gtext " TEACHERS, you can use this package" 4 1 8 95
  173. gtext " to capture your students' attention" 5 1 8 95
  174. gtext " with stunning graphics and speech." 6 1 8 95
  175. gtext " Use SHOW MAKER for any tutorial," 7 1 8 95
  176. gtext " history or science lesson, talking" 8 1 8 95
  177. gtext " picture books and any other subject," 9 1 8 95
  178. gtext " place, procedure or object you need" 10 1 8 95
  179. gtext " to present to your students. This" 11 1 8 95
  180. gtext " product can be applied to students" 12 1 8 95
  181. gtext " of ALL ages, THERE IS NO LIMIT." 13 1 8 95
  182.  
  183. gtext " As any teacher knows, getting a stu-" 15 1 8 95
  184. gtext " dent interested is half the battle." 16 1 8 95
  185. gtext " The other half is trying to satisfy" 17 1 8 95
  186. gtext " the demands of knowledge once sparked. " 18 1 8 95
  187. gtext " Interactive software using SHOW " 19 1 8 95
  188. gtext " MAKER helps in both areas, enabling " 20 1 8 95
  189. gtext " the student to link pictures, speech," 21 1 8 95
  190. gtext " music and special effects. *WOW*" 22 1 8 95
  191.  
  192. gtext "       Press ANY KEY to Continue " 24 1 8 210
  193. key
  194.  
  195. SHOW-PCX blue.PCX slide r
  196. gtext "              YOUR IMAGES  " 1 1 14 90
  197. gtext "              ~~~~~~~~~~~  " 2 1 14 90
  198. gtext " You can paint your screens with a " 3 1 14 95
  199. gtext " paint program or you can scan your" 4 1 14 95
  200. gtext " images with a black and white or" 5 1 14 95
  201. gtext " color hand scanner. If your have a" 6 1 14 95
  202. gtext " video capture board you can capture" 7 1 14 95
  203. gtext " from a cam-corder or VHS player. You" 8 1 14 95
  204. gtext " can also purchase clip art library" 9 1 14 95
  205. gtext " and high quality image libraries. As" 10 1 14 95
  206. gtext " an added service we can capture your" 11 1 14 95
  207. gtext " video's, photo's and artwork. " 12 1 14 95
  208. PLAY BEGOOD.CMF
  209. gtext "       Press ANY KEY to Continue " 24 1 8 210
  210. key
  211. clear blue.pcx spiral r
  212.  
  213. rem cleanup